home *** CD-ROM | disk | FTP | other *** search
/ Idea Cafe - The Small Business Gathering Place / Idea Cafe.iso / java / clean_html < prev    next >
Text File  |  1996-12-09  |  657b  |  25 lines

  1. #!/bin/csh -f
  2. #
  3. # Created  by:    Siamak Farah    
  4. # Modified by:    Siamak Farah    on Sat Oct  7 10:16:27 PDT 1995
  5. # Modified by:
  6. #
  7. # This file will change XXX to YYY on all the files
  8. # in a given site
  9. #
  10. foreach i ( `find . -name "*.htm*" -print` )
  11.     set dir = $i:h
  12.     set dir_name = $dir:t
  13.     if ( ! -d $i ) then
  14.         cat $i | sed -e "s,href,HREF,g"            \
  15.         -e 's,HREF="/",HREF="http://www.sun.com",g'    \
  16.         -e 's,HREF="/javacomputing",HREF="welcome.htm" TARGET="_top",g'    \
  17.         -e 's,HREF="javacomputing",HREF="welcome.htm" TARGET="_top",g'    \
  18.         -e 's,HREF="../java.html",HREF="welcome.htm" TARGET="_top",g'    \
  19.         > tmp_file
  20.     mv tmp_file $i 
  21.     echo did $i
  22.     endif
  23. end
  24. exit
  25.